home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v04n12 / batch2.exe / AUTOEXEC.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-10-10  |  336 b   |  16 lines

  1. @ECHO OFF
  2. REM This is a sample AUTOEXEC.BAT
  3. REM with a CAPSTEST line upfront
  4. CAPSTEST
  5. IF ERRORLEVEL 64 IF NOT ERRORLEVEL 65 GOTO SKIP
  6.  
  7.  (Normal AUTOEXEC.BAT stuff goes here)
  8.  
  9. PROMPT $P:
  10. PATH C:\DOS;C:\BIN
  11. GOTO END
  12. :SKIP
  13. ECHO You pressed CapsLock to have AUTOEXEC.BAT
  14. ECHO skip around all its time-consuming routines
  15. :END
  16.